* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
authorGlenn Morris <rgm@gnu.org>
Mon, 24 Oct 2011 17:37:03 +0000 (13:37 -0400)
committerGlenn Morris <rgm@gnu.org>
Mon, 24 Oct 2011 17:37:03 +0000 (13:37 -0400)
lisp/ChangeLog
lisp/emacs-lisp/easy-mmode.el

index 46a5500890826ec25493db2bf6aa5c1b0ed9aa43..8c8f38906365b5ac3cae215930fed76b8b276468 100644 (file)
@@ -1,3 +1,7 @@
+2011-10-24  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
+
 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
 
        * notifications.el: Add the requirement of a running D-Bus session
index b1cb0615e4310899ee74838a3c66d4cc3bcd900e..4b6f4d634ca780fcb6a6e1edef17ae4ac270ef97 100644 (file)
@@ -94,8 +94,9 @@ Optional LIGHTER is displayed in the modeline when the mode is on.
 Optional KEYMAP is the default keymap bound to the mode keymap.
   If non-nil, it should be a variable name (whose value is a keymap),
   or an expression that returns either a keymap or a list of
-  arguments for `easy-mmode-define-keymap'.  If KEYMAP is not a symbol,
-  this also defines the variable MODE-map.
+  arguments for `easy-mmode-define-keymap'.  If you supply a KEYMAP
+  argument that is not a symbol, this macro defines the variable
+  MODE-map and gives it the value that KEYMAP specifies.
 
 BODY contains code to execute each time the mode is enabled or disabled.
   It is executed after toggling the mode, and before running MODE-hook.